home *** CD-ROM | disk | FTP | other *** search
/ IRIX Base Documentation 1998 November / IRIX 6.5.2 Base Documentation November 1998.img / usr / share / catman / p_man / cat3 / complib / dlacpy.z / dlacpy
Text File  |  1998-10-30  |  2KB  |  67 lines

  1.  
  2.  
  3.  
  4. DDDDLLLLAAAACCCCPPPPYYYY((((3333FFFF))))                                                          DDDDLLLLAAAACCCCPPPPYYYY((((3333FFFF))))
  5.  
  6.  
  7.  
  8. NNNNAAAAMMMMEEEE
  9.      DLACPY - copie all or part of a two-dimensional matrix A to another
  10.      matrix B
  11.  
  12. SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
  13.      SUBROUTINE DLACPY( UPLO, M, N, A, LDA, B, LDB )
  14.  
  15.          CHARACTER      UPLO
  16.  
  17.          INTEGER        LDA, LDB, M, N
  18.  
  19.          DOUBLE         PRECISION A( LDA, * ), B( LDB, * )
  20.  
  21. PPPPUUUURRRRPPPPOOOOSSSSEEEE
  22.      DLACPY copies all or part of a two-dimensional matrix A to another matrix
  23.      B.
  24.  
  25.  
  26. AAAARRRRGGGGUUUUMMMMEEEENNNNTTTTSSSS
  27.      UPLO    (input) CHARACTER*1
  28.              Specifies the part of the matrix A to be copied to B.  = 'U':
  29.              Upper triangular part
  30.              = 'L':      Lower triangular part
  31.              Otherwise:  All of the matrix A
  32.  
  33.      M       (input) INTEGER
  34.              The number of rows of the matrix A.  M >= 0.
  35.  
  36.      N       (input) INTEGER
  37.              The number of columns of the matrix A.  N >= 0.
  38.  
  39.      A       (input) DOUBLE PRECISION array, dimension (LDA,N)
  40.              The m by n matrix A.  If UPLO = 'U', only the upper triangle or
  41.              trapezoid is accessed; if UPLO = 'L', only the lower triangle or
  42.              trapezoid is accessed.
  43.  
  44.      LDA     (input) INTEGER
  45.              The leading dimension of the array A.  LDA >= max(1,M).
  46.  
  47.      B       (output) DOUBLE PRECISION array, dimension (LDB,N)
  48.              On exit, B = A in the locations specified by UPLO.
  49.  
  50.      LDB     (input) INTEGER
  51.              The leading dimension of the array B.  LDB >= max(1,M).
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.                                                                         PPPPaaaaggggeeee 1111
  64.  
  65.  
  66.  
  67.